home *** CD-ROM | disk | FTP | other *** search
/ Agent Central Host Computer / Agent - Central Host Computer.iso / _SETUP.1 / veventspart2.sql < prev    next >
Text File  |  2000-05-12  |  1KB  |  29 lines

  1. /*
  2. This is one of the constituent views of vallevents... collecting all events together.
  3. */
  4. create or replace view veventsPart2 as 
  5. select DET_SEQ_NUM, FAREBOX_GLID ,CONV_DATE , 0 SHIFT_SEQ, 0 USER_ID , 0 ROUTE_ID,
  6.  0 RUN_ID, 0 TRIP_ID, 0 FARESET_ID , '   ' setclr, 0 alarm, rpad('(13) Cons Pwr Bgn', 200) event
  7. from conpwrb 
  8. union 
  9. select DET_SEQ_NUM, FAREBOX_GLID, CONV_DATE , 0 SHIFT_SEQ, 0 USER_ID , 0 ROUTE_ID,
  10.  0 RUN_ID, 0 TRIP_ID, 0 FARESET_ID , '   ' setclr, 0 alarm, '(14) Cons Pwr End' event
  11. from conpwre 
  12. union 
  13. select DET_SEQ_NUM, FAREBOX_GLID, CONV_DATE, 0 SHIFT_SEQ, 0 USER_ID , 0 ROUTE_ID,
  14.  0 RUN_ID, 0 TRIP_ID, 0 FARESET_ID ,'   ' setclr, 0 alarm, '(15) AcceptStackerCard' event
  15. from curacc where currency_type = 401 and currency_val = 0
  16. union
  17. select DET_SEQ_NUM, FAREBOX_GLID, CONV_DATE,0 SHIFT_SEQ, 0 USER_ID , 0 ROUTE_ID,
  18.  0 RUN_ID, 0 TRIP_ID, 0 FARESET_ID ,'   ' setclr, 0 alarm,
  19. '(16) Curr Accepted ' || 
  20. decode( FLOOR(0.01*currency_type), 2, 'Coin', 3, 'Bill', 4, 'Stacker', 'Other') ||
  21. to_char(0.01 * currency_vaL, '999.99') event
  22. from curacc
  23. union 
  24. select  DET_SEQ_NUM ,FAREBOX_GLID ,CONV_DATE , 0 SHIFT_SEQ, 0 USER_ID , 0 ROUTE_ID,
  25.  0 RUN_ID, 0 TRIP_ID, 0 FARESET_ID , '   ' setclr, 0 alarm, '(17) Esc Key' event
  26. from escapek;
  27.  
  28.  
  29.